home *** CD-ROM | disk | FTP | other *** search
/ Graphics Plus / Graphics Plus.iso / msdos / raytrace / pov / gen / gfont10 / example.pov < prev    next >
Text File  |  1994-02-21  |  1KB  |  54 lines

  1. #include "colors.inc"
  2. #include "textures.inc"
  3. #include "stones.inc"
  4.  
  5. #include "example.inc"
  6.  
  7. camera {
  8.     location    <5, 3, -20>
  9.     direction   <0, 0, 1.5>
  10.     up          <0, 1, 0>
  11.     right       <4/3, 0, 0>
  12.     look_at     <0, 0, 0>
  13. }
  14.  
  15. object {
  16.     light_source { <TestMinX*1.5, 10, -10> color White }
  17. }
  18.  
  19. object {
  20.     light_source { <TestMaxX*1.5, 10, -10> color White }
  21. }
  22.  
  23. #declare Width = TestMaxX - TestMinX
  24. #declare Height = TestMaxY - TestMinY
  25.  
  26. #declare Plate = box { <Width * -0.1, Height * -0.1, 0>, <Width * 1.1, Height * 1.1, 2> }
  27.  
  28. object {
  29.     difference {
  30.         object {Plate }
  31.         object {Test }
  32.     }
  33.     // bounded_by { Plate }
  34.     texture {
  35.         Grnt28
  36.         finish { Shiny }
  37.     }
  38.  
  39.     translate <-(TestMaxX + TestMinX) / 2, 0, 0>
  40. }
  41.  
  42. object {
  43.     box { <-Width * 1.5, TestMinY - 1, -4>, <Width * 1.5, Height * -0.1, 4>}
  44.     texture {
  45.         pigment {
  46.             color Violet
  47.         }
  48.         normal { bumps 0.5 }
  49.         finish {Shiny}
  50.         translate <.5,.5,.5>
  51.     }
  52. }
  53.  
  54.